home *** CD-ROM | disk | FTP | other *** search
- @ECHO OFF
- CLS
- IF NOT EXIST %1\NUL GOTO INVALID
- IF "%1"=="" GOTO NODRIVE
- ECHO.
- ECHO.
- ECHO About to copy the File Manager files to a temporary directory %1\CPFMW
- ECHO Next month's disk will contain the remaining files required to complete
- ECHO the installation. These files may be deleted when the installation is
- ECHO complete. Leave them on your hard disk until you get next month's disk.
- ECHO.
- ECHO.
- ECHO Press CTRL-C to abort or
- Pause
- CLS
- MD %1\CPFMW
- ECHO Unpacking files, please wait.....
- PKUNZIP CPSFM1.ZIP %1\CPFMW >NUL
- ECHO.
- ECHO.
- ECHO.
- ECHO.
- ECHO.
- ECHO.
- ECHO Finished copying files, press any key to return to the main menu.
- Pause
- MAIN
-
- :NODRIVE
- ECHO You must enter the drive letter (e.g. C:) of the drive you wish to
- ECHO install to.
- ECHO.
- ECHO Try again.
- ECHO.
- ECHO.
- PAUSE
- MAIN
-
- :INVALID
- ECHO The drive you specified does not exist. Try again.
- ECHO.
- ECHO.
- PAUSE
- MAIN
-
-